home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-05-22 | 700 b | 38 lines | [TEXT/CWIE] |
- // Quicktime support prototypes and variables
-
- #ifndef __QTMOVIES__
- #define __QTMOVIES__
-
- // Application-specific headers
- #include "qttypes.h"
-
- // API headers
- #include "qtvrtypes.h"
-
- // System headers
- #include <Movies.h>
-
- /////
- //
- // Module data structures
- //
- /////
-
- typedef struct {
- CWindowPtr Window; // Window the movie is played in
- MovieStruct MovieData; // Data to support a QT Movie
- QTVRStruct QTVRData; // Data to support a QTVR movie
- } MovieInstance;
-
- /////
- //
- // Module Prototypes
- //
- /////
-
- MovieInstance * GetValidMovieInstance(MovieInstance * theInstance); // If the movieInstance is nil, make it point to the front window if there is one
-
-
- #endif // #ifndef __QTMOVIES__
-
-